home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000350_news@newsmaster….columbia.edu _Tue Jun 24 18:41:25 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA00168
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 24 Jun 1997 18:41:25 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA20214
  7.     for kermit.misc@watsun; Tue, 24 Jun 1997 18:41:24 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: ckepage.ksc
  12. Date: 24 Jun 1997 22:41:21 GMT
  13. Organization: Columbia University
  14. Lines: 28
  15. Message-ID: <5opieh$jnj$1@newsmaster.cc.columbia.edu>
  16. References: <01bc80d2$f7bd5840$5983adce@Trey.tulsa.citgo.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7216
  19.  
  20. In article <01bc80d2$f7bd5840$5983adce@Trey.tulsa.citgo.com>,
  21. Trey Thompson <trey.thompson@citgo.com> wrote:
  22. : I just downloaded the latest kermit and built it for aix3.2.5 - when I try
  23. : to "take" the script, I get an error message that a "line is too long or
  24. : contains a null character". When I comment out this line:
  25. :     asg block \%m\fchar(\fmod(\%s/256,16)+48)-
  26. : \fchar(\fmod(\%s/16,16)+48)-
  27. : \fchar(\fmod(\%s,16)+48)\13    ; Checksummed TAP block
  28. : it "takes" just fine.
  29. :
  30. Yes, but then it won't work.
  31.  
  32. : I tried deleting the comment to shorten the line and I tried 
  33. : concatenating all three parts into one line but I still get the
  34. : error message.
  35. The TAPMSG macro definition is a tad too long for the command buffer
  36. in the default AIX C-Kermit build.  Go to your C-Kermit source directory 
  37. and:
  38.  
  39.   make clean
  40.   make rs6aix32c KFLAGS=-DBIGBUFOK
  41.  
  42. In the next release, all RS/6000 and PowerPC AIX versions will be built
  43. with big buffers by default.
  44.  
  45. - Frank